home *** CD-ROM | disk | FTP | other *** search
/ PC User 2003 September / Australian PC User - September 2003 (CD1).iso / magstuff / web / files / psp801ev.exe / Data1.cab / Preset_Lights_Lamp.PspScript < prev    next >
Encoding:
Text File  |  2003-06-06  |  857 b   |  25 lines

  1. from JascApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': 'PSP 7 Preset Converter',
  6.         'Copyright': '',
  7.         'Description': 'Lamp Lights preset',
  8.         'Host': 'Paint Shop Pro 8',
  9.         'Host Version': '8.00',
  10.     }
  11.  
  12. def Preset_Lights():
  13.     return {
  14.         'GeneralSettings': {
  15.             'AutoActionMode': 0,
  16.             'ExecutionMode': 0
  17.             },
  18.         'Lights': ((0, (200, 200, 200), (-70, -70, 10, 500, 28, 45, 40, 155)), (0, (200, 200, 200), (70, -70, 10, 500, 28, 45, 40, 245)), (0, (200, 200, 200), (70, 70, 10, 500, 28, 45, 40, 335)), (1, (255, 228, 197), (0, -50, 12, 200, 20, 55, 59, 180)), (0, (200, 200, -50), (0, 0, 10, 500, 28, 70, 40, 180))),
  19.         'SelButton': 3,
  20.         'Darkness': 85,
  21.         }
  22.  
  23. def Do(Environment):
  24.     App.Do(Environment, 'Lights', Preset_Lights())
  25.